home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games Extra 1996 September / Amiga Games Extra CD-ROM 9-1996.iso / userbox / publicdomain / vim-4.2 / src / version.h < prev    next >
Text File  |  1996-06-13  |  795b  |  32 lines

  1. /* vi:set ts=4 sw=4:
  2.  *
  3.  * VIM - Vi IMproved        by Bram Moolenaar
  4.  *
  5.  * Do ":help uganda"  in Vim to read copying and usage conditions.
  6.  * Do ":help credits" in Vim to see a list of people who contributed.
  7.  */
  8.  
  9. /*
  10.  * This file is currently only used for the Win32 version.
  11.  * Should probably generate all of this from the Makefile or in a separate
  12.  * little C program that reads a small file; e.g., version.dat: 
  13.  *    major=3
  14.  *    minor=29
  15.  *    build=101
  16.  *    patchlevel=0
  17.  *    date=1996 May 23
  18.  */
  19.  
  20.  
  21. #define VIM_VERSION_MAJOR               4
  22. #define VIM_VERSION_MAJOR_STR          "4"
  23.  
  24. #define VIM_VERSION_MINOR               2
  25. #define VIM_VERSION_MINOR_STR          "2"
  26.  
  27. #define VIM_VERSION_BUILD               1
  28. #define VIM_VERSION_BUILD_STR          "1"
  29.  
  30. #define VIM_VERSION_PATCHLEVEL           0
  31. #define VIM_VERSION_PATCHLEVEL_STR      "0"
  32.